home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / bbsutils / tb502man.arj / P137 < prev    next >
Text File  |  1994-02-13  |  3KB  |  63 lines

  1.  
  2.  
  3.  
  4.  
  5.      The TriBBS Bulletin Board System                                   137
  6.  
  7.                                   FILE FORMATS
  8.                                   ------------
  9.  
  10.      In order to encourage third-party development of TriBBS-related
  11.      utilities and doors, this section details the file formats TriBBS
  12.      uses.  You should note that TriBBS is written in C++ and as such all
  13.      data types are C data types.  For example, all strings are null-
  14.      terminated C strings.
  15.  
  16.  
  17.      SYSDAT1.DAT
  18.      -----------
  19.  
  20.      Is the system configuration file and is located in node 1's main
  21.      directory.  It uses the following format:
  22.  
  23.      Byte           Data           Description
  24.      Position       Type
  25.        1 to  41     char [41]      The board's name.
  26.       42 to  82     char [41]      The sysop's name.
  27.       83 to  91     char [9]       The board's starting date.
  28.       92 to  95     char [4]       The board's default file extension. 
  29.                                    Must be ZIP, ARJ, LZH, PAK, SDN, or ARC.
  30.       96 to  97     int            Total number of nodes.
  31.       98 to  99     int            The number of today's calls.
  32.      100 to 101     int            The number of messages posted today.
  33.      102 to 103     int            The number of uploads today.
  34.      104 to 105     int            The number of downloads today.
  35.      106 to 107     int            The default daily time limit.
  36.      108 to 109     int            The default number of daily calls.
  37.      110 to 111     int            The maximum time per call.
  38.      112 to 113     int            The minimum sysop security level.
  39.      114 to 115     int            The new user security level.
  40.      116 to 117     int            The new user daily time limit.
  41.      118 to 119     int            Upload time compensation ratio.
  42.      120 to 121     int            Maximum no keyboard input time in
  43.                                    minutes.
  44.      122 to 125     long           The total number of calls.
  45.      126 to 127     int            US phone number flag.  If TRUE, use US
  46.                                    phone number format.  If FALSE, don't
  47.                                    use US phone number format.
  48.      128 to 129     int            Test uploads flag.  If TRUE, scan
  49.                                    uploads for viruses.  If FALSE, don't
  50.                                    scan uploads for viruses.
  51.      130 to 131     int            Auto ANSI detection flag.  If TRUE, do
  52.                                    auto ANSI autodetect.  If FALSE, prompt
  53.                                    user for ANSI color graphics.
  54.      132 to 133     int            Waiting message flag.  If TRUE, check
  55.                                    for waiting messages.  If FALSE, don't
  56.                                    check for waiting messages.
  57.      134 to 149     char [16]      The system password.
  58.      150 to 151     int            The board's file/byte ratio type.
  59.  
  60.  
  61.  
  62.  
  63.